github.com/klauspost/compress/fse.Scratch.actualTableLog (field)
30 uses
github.com/klauspost/compress/fse (current package)
compress.go#L135: c1.init(&s.bw, &s.ct, s.actualTableLog, tt[src[ip-1]])
compress.go#L136: c2.init(&s.bw, &s.ct, s.actualTableLog, tt[src[ip-2]])
compress.go#L140: c2.init(&s.bw, &s.ct, s.actualTableLog, tt[src[ip-1]])
compress.go#L141: c1.init(&s.bw, &s.ct, s.actualTableLog, tt[src[ip-2]])
compress.go#L153: case !s.zeroBits && s.actualTableLog <= 8:
compress.go#L175: case s.actualTableLog <= 8:
compress.go#L199: c2.flush(s.actualTableLog)
compress.go#L200: c1.flush(s.actualTableLog)
compress.go#L210: tableLog = s.actualTableLog
compress.go#L329: tableSize := 1 << s.actualTableLog
compress.go#L350: tableSize := uint32(1 << s.actualTableLog)
compress.go#L393: largeLimit := int16(1 << (s.actualTableLog - 1))
compress.go#L429: tableLog := s.actualTableLog
compress.go#L503: s.actualTableLog = tableLog
compress.go#L512: tableLog = s.actualTableLog
compress.go#L566: tableLog = s.actualTableLog
compress.go#L669: fmt.Printf("selected TableLog: %d, Symbol length: %d\n", s.actualTableLog, s.symbolLen)
compress.go#L674: if total != (1 << s.actualTableLog) {
compress.go#L675: return fmt.Errorf("warning: Total == %d != %d", total, 1<<s.actualTableLog)
decompress.go#L60: s.actualTableLog = uint8(nbBits)
decompress.go#L156: if gotTotal != 1<<s.actualTableLog {
decompress.go#L157: return fmt.Errorf("corruption detected (total %d != %d)", gotTotal, 1<<s.actualTableLog)
decompress.go#L174: tableSize := 1 << s.actualTableLog
decompress.go#L193: tableSize := uint32(1 << s.actualTableLog)
decompress.go#L201: largeLimit := int16(1 << (s.actualTableLog - 1))
decompress.go#L238: tableSize := uint16(1 << s.actualTableLog)
decompress.go#L243: nBits := s.actualTableLog - byte(highBits(uint32(nextState)))
decompress.go#L269: s1.init(br, s.decTable, s.actualTableLog)
decompress.go#L270: s2.init(br, s.decTable, s.actualTableLog)
fse.go#L74: actualTableLog uint8 // Selected tablelog.
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |